The <td> HTML tag is used to set up a cell in a table that holds information. It takes part in the table model.
In HTML, the <td> tag sets a normal data cell in a table.
An HTML table has two kinds of cells:
Top cells - hold information about the header (made with <th> element)
Data cells - holds data (made using the <td> element)
The words in <td> parts are normal and go to the left by default.
By default, the words in <th> are bold and centred.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
<table>
<tr>
<td>Data 1<td>
<td>Data 2<td>
<tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
</tr>
</table>
<!--Write your content here levoriclearn top degree online and program-->
</body>
</html>